home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / scanf.c,v < prev    next >
Text File  |  1991-12-02  |  4KB  |  216 lines

  1. head     1.6;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.6.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.6
  10. date     88.07.28.17.18.43;  author ouster;  state Exp;
  11. branches 1.6.1.1;
  12. next     1.5;
  13.  
  14. 1.5
  15. date     88.07.28.16.41.16;  author ouster;  state Exp;
  16. branches ;
  17. next     1.4;
  18.  
  19. 1.4
  20. date     88.07.25.14.12.01;  author ouster;  state Exp;
  21. branches ;
  22. next     1.3;
  23.  
  24. 1.3
  25. date     88.07.21.09.37.44;  author ouster;  state Exp;
  26. branches ;
  27. next     1.2;
  28.  
  29. 1.2
  30. date     88.07.11.16.02.24;  author ouster;  state Exp;
  31. branches ;
  32. next     1.1;
  33.  
  34. 1.1
  35. date     88.06.10.16.23.57;  author ouster;  state Exp;
  36. branches ;
  37. next     ;
  38.  
  39. 1.6.1.1
  40. date     91.12.02.20.02.03;  author kupfer;  state Exp;
  41. branches ;
  42. next     ;
  43.  
  44.  
  45. desc
  46. @@
  47.  
  48.  
  49. 1.6
  50. log
  51. @More lint.
  52. @
  53. text
  54. @/* 
  55.  * scanf.c --
  56.  *
  57.  *    Source code for the "scanf" library procedure.
  58.  *
  59.  * Copyright 1988 Regents of the University of California
  60.  * Permission to use, copy, modify, and distribute this
  61.  * software and its documentation for any purpose and without
  62.  * fee is hereby granted, provided that the above copyright
  63.  * notice appear in all copies.  The University of California
  64.  * makes no representations about the suitability of this
  65.  * software for any purpose.  It is provided "as is" without
  66.  * express or implied warranty.
  67.  */
  68.  
  69. #ifndef lint
  70. static char rcsid[] = "$Header: scanf.c,v 1.5 88/07/28 16:41:16 ouster Exp $ SPRITE (Berkeley)";
  71. #endif not lint
  72.  
  73. #include <stdio.h>
  74. #include <varargs.h>
  75.  
  76. /*
  77.  *----------------------------------------------------------------------
  78.  *
  79.  * scanf --
  80.  *
  81.  *    Read characters from stdin and parse them into internal
  82.  *    representations.
  83.  *
  84.  * Results:
  85.  *    The values indicated by va_alist are modified to hold
  86.  *    information scanned from stream.  The return value is the
  87.  *    number of fields successfully scanned, or EOF if the string
  88.  *    is empty.  See the man page for details.
  89.  *
  90.  * Side effects:
  91.  *    None.
  92.  *
  93.  *----------------------------------------------------------------------
  94.  */
  95.  
  96. #ifndef lint
  97. int
  98. scanf(va_alist)
  99.     va_dcl            /* char *format, then any number of pointers to
  100.                  * values to be scanned from stdin under
  101.                  * control of format. */
  102. {
  103.     char *format;
  104.     va_list args;
  105.  
  106.     va_start(args);
  107.     format = va_arg(args, char *);
  108.     return vfscanf(stdin, format, args);
  109. }
  110. #else
  111. /* VARARGS1 */
  112. /* ARGSUSED */
  113. int
  114. scanf(format)
  115.     char *format;
  116. {
  117.     return 0;
  118. }
  119. #endif lint
  120. @
  121.  
  122.  
  123. 1.6.1.1
  124. log
  125. @Initial branch for Sprite server.
  126. @
  127. text
  128. @d17 1
  129. a17 1
  130. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/scanf.c,v 1.6 88/07/28 17:18:43 ouster Exp $ SPRITE (Berkeley)";
  131. @
  132.  
  133.  
  134. 1.5
  135. log
  136. @Still cleaning stuff related to lint libraries.
  137. @
  138. text
  139. @d17 1
  140. a17 1
  141. static char rcsid[] = "$Header: scanf.c,v 1.4 88/07/25 14:12:01 ouster Exp $ SPRITE (Berkeley)";
  142. d59 1
  143. @
  144.  
  145.  
  146. 1.4
  147. log
  148. @Generate more complete lint library information.
  149. @
  150. text
  151. @d17 1
  152. a17 1
  153. static char rcsid[] = "$Header: scanf.c,v 1.3 88/07/21 09:37:44 ouster Exp $ SPRITE (Berkeley)";
  154. d43 1
  155. a43 1
  156. #ifndef LINTLIB
  157. d65 1
  158. a65 1
  159. #endif LINTLIB
  160. @
  161.  
  162.  
  163. 1.3
  164. log
  165. @Change to use vfscanf instead of _doscan.
  166. @
  167. text
  168. @d17 1
  169. a17 1
  170. static char rcsid[] = "$Header: scanf.c,v 1.2 88/07/11 16:02:24 ouster Exp $ SPRITE (Berkeley)";
  171. d43 1
  172. a43 1
  173.     /* VARARGS0 */
  174. d57 9
  175. @
  176.  
  177.  
  178. 1.2
  179. log
  180. @If using varargs, don't have any arguments preceding the va_alist.
  181. @
  182. text
  183. @d17 1
  184. a17 1
  185. static char rcsid[] = "$Header: scanf.c,v 1.1 88/06/10 16:23:57 ouster Exp $ SPRITE (Berkeley)";
  186. d55 1
  187. a55 1
  188.     return _doscan(format, &args, stdin);
  189. @
  190.  
  191.  
  192. 1.1
  193. log
  194. @Initial revision
  195. @
  196. text
  197. @d17 1
  198. a17 1
  199. static char rcsid[] = "$Header: atoi.c,v 1.1 88/04/28 17:20:23 ouster Exp $ SPRITE (Berkeley)";
  200. d20 2
  201. a21 2
  202. #include "stdio.h"
  203. #include "varargs.h"
  204. d43 1
  205. d45 4
  206. a48 6
  207. scanf(format, va_alist)
  208.     char *format;        /* Contains literal text and format control
  209.                  * sequences indicating how string is to be
  210.                  * parsed.  See the manual page for details. */
  211.     va_dcl            /* Variable number of values to be formatted
  212.                  * and printed. */
  213. d50 1
  214. d54 1
  215. @
  216.